
/* ==========================
   HEADER
========================== */
/* --- Header --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  background: #fff8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #b57c6a;
}

.nav a {
  margin-left: 2rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #b57c6a;
}

header h1 {
    margin: 0;
    font-weight: 700;
    color:#b57c6a;
    font-size: 2rem;
}

/* ===== NAVIGATION ===== */
nav {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 30px;
}

nav a {
    font-weight: 600;
    color: #b57c6a;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-size: 1.6rem;
}

nav a:hover {
    color: #e67624;
}

/* ==========================
   FORMULAIRE
========================== */
form {
    max-width: 600px;            /* Largeur contenue */
    margin: 40px auto;           /* Centré horizontalement */
    padding: 25px;
    background-color: #fff8f0;   /* Couleur douce */
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-family: 'Poppins', sans-serif;
}

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: #ff8c42; /* Couleur de survol douce */
    outline: none;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form input[type="submit"] {
    background-color: #ff8c42;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form input[type="submit"]:hover {
    background-color: #e67624;
}

/* reCAPTCHA centré */
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* ==========================
   INFO ET CONTACT IMAGE
========================== */
#info2 {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #333;
    line-height: 1.6;
}

#contact {
    text-align: center;
    margin-top: 30px;
}

#contact img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* ==========================
   FOOTER
========================== */
footer {
    background-color: #fff8f0;
    padding: 25px 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #ff8c42;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #e67624;
}
